home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / tomcat_status.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  72 lines

  1. #
  2. # This script was written by Vincent Renardias <vincent@strongholdnet.com>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11218);
  10. # script_cve_id("CVE-MAP-NOMATCH");
  11.  script_version ("$Revision: 1.3 $");
  12.  name["english"] = "Tomcat /status information disclosure";
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. Requesting the URI /status gives information about
  17. the currently running Tomcat.
  18.  
  19. It also allows anybody to reset (ie: permanently delete) the current
  20. statistics.
  21.  
  22. Risk factor : Low 
  23.  
  24. Solution : If you don't use this feature, comment the appropriate section in
  25. your httpd.conf file. If you really need it, limit its access to
  26. the administrator's machine.";
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Makes a request like http://www.example.com/server-status";
  31.  script_summary(english:summary["english"]);
  32.  
  33.  script_category(ACT_ATTACK);
  34.  
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2003 StrongHoldNet",
  37.         francais:"Ce script est Copyright (C) 2003 StrongHoldNet");
  38.  family["english"] = "Misc.";
  39.  script_family(english:family["english"]);
  40.  script_dependencie("find_service.nes");
  41.  script_require_ports("Services/www", 80);
  42.  script_require_keys("www/apache");
  43.  
  44.  exit(0);
  45. }
  46.  
  47. #
  48. # The script code starts here
  49. #
  50.  
  51. include("http_func.inc");
  52.  
  53. port = get_http_port(default:80);
  54.  
  55.  
  56. if(get_port_state(port))
  57. {
  58.  soc = http_open_socket(port);
  59.  if(soc)
  60.  {
  61.   buffer = http_get(item:"/status", port:port);
  62.   send(socket:soc, data:buffer);
  63.   data = http_recv(socket:soc);
  64.   if( ("Status information for" >< data) && ("<a href='jkstatus?scoreboard.reset'>reset</a>" >< data) )
  65.   {
  66.    security_warning(port);
  67.   }
  68.   http_close_socket(soc);
  69.  }
  70. }
  71.  
  72.